home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Printer Drivers… / LaserWriter--custom dialogs / Generic LaserWriter.a < prev    next >
Encoding:
Text File  |  1996-03-20  |  964 b   |  49 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    Generic LaserWriter.a
  3. ;
  4. ;    this file contains a jump table for the generic LaserWriter driver
  5. ;
  6. ;    © 1992-1994 Apple Computer Inc.
  7. ;
  8. ;    2/11/94 - dmh - Added custom old-API dialogs.
  9. ;
  10.  
  11.                     STRING        ASIS
  12.                     CASE        OBJ
  13.     
  14.  
  15. DriverJumpTable        PROC        EXPORT
  16.  
  17.                     EXPORT        referenceCount
  18.                             
  19. referenceCount        DC.L        0
  20.  
  21.                     IMPORT        DriverInitialize
  22.                     JMP            DriverInitialize
  23.                                                 
  24.                     IMPORT        DriverShutDown
  25.                     JMP            DriverShutDown
  26.                                                 
  27.                     IMPORT        DriverPrDlgMain
  28.                     JMP            DriverPrDlgMain
  29.                                                 
  30.                     IMPORT        DriverPrStlInit
  31.                     JMP            DriverPrStlInit
  32.                                                 
  33.                     IMPORT        DriverPrJobInit
  34.                     JMP            DriverPrJobInit
  35.                                                 
  36.                     IMPORT        DriverPrValidate
  37.                     JMP            DriverPrValidate
  38.                                                 
  39.                     IMPORT        DriverPrintDefault
  40.                     JMP            DriverPrintDefault
  41.  
  42.                     IMPORT        DriverConvertPrintRecordTo
  43.                     JMP            DriverConvertPrintRecordTo
  44.  
  45.                     IMPORT        DriverConvertPrintRecordFrom
  46.                     JMP            DriverConvertPrintRecordFrom
  47.  
  48.                     END
  49.